home *** CD-ROM | disk | FTP | other *** search
/ The Games Machine 76 / XENIATGM66.iso / Indiana Jones / Indiana Jones.exe / RESOURCE / PREVIEW.GOB / cog_gen_sectorthrust.cog < prev    next >
Text File  |  1999-11-15  |  1KB  |  48 lines

  1. # Jones 3D Cog Script
  2. #
  3. # gen_SectorThrust.cog
  4. #
  5. # generic sector thrust script
  6. #
  7. # This script will control 1-8 sector thrust sectors thrusting in the same direction
  8. # and with the same velocity.  The thrusts run continuously.
  9. #
  10. # [YB]
  11. #
  12. # (C) 1997 LucasArts Entertainment Co. All Rights Reserved
  13. # ========================================================================================
  14.  
  15. symbols
  16.     message    startup    
  17.  
  18.     vector    vec0            desc=thrust_direction
  19.     float        speed=1.0    desc=thrust_speed
  20.  
  21.     sector    sector0        nolink
  22.     sector    sector1         nolink
  23.     sector    sector2        nolink
  24.     sector    sector3        nolink
  25.     sector    sector4        nolink
  26.     sector    sector5        nolink
  27.     sector    sector6        nolink
  28.     sector    sector7        nolink
  29. end
  30.  
  31.  
  32. code
  33.  
  34. # ........................................................................................
  35.  
  36. startup:
  37.     if (sector0 >= 0) SetSectorThrust(sector0, vec0, speed);
  38.     if (sector1 >= 0) SetSectorThrust(sector1, vec0, speed);
  39.     if (sector2 >= 0) SetSectorThrust(sector2, vec0, speed);
  40.     if (sector3 >= 0) SetSectorThrust(sector3, vec0, speed);
  41.     if (sector4 >= 0) SetSectorThrust(sector4, vec0, speed);
  42.     if (sector5 >= 0) SetSectorThrust(sector5, vec0, speed);
  43.     if (sector6 >= 0) SetSectorThrust(sector6, vec0, speed);
  44.     if (sector7 >= 0) SetSectorThrust(sector7, vec0, speed);
  45.     return;
  46.  
  47. end
  48.